home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-02 / pnl006.zip / CHESSTER.PAS < prev    next >
Pascal/Delphi Source File  |  1991-03-17  |  351b  |  20 lines

  1. program Chesster;
  2.  
  3. {
  4.   This is the main Chess-Ter module. It contains the main routine and
  5.   all necessary unit inclusions.
  6.   }
  7. uses
  8.   Globals, crt, kb1, dos, Draw_Pcs;
  9.  
  10. begin
  11.    InitScrn;
  12.    InitGame(Game_State);
  13.    Draw_Board(Game_State);
  14.    Show_Text(Game_State, Move_History);
  15.    Get_Keyboard(Game_State);
  16.    EndPrompt;
  17. end.
  18.  
  19. 
  20.